home *** CD-ROM | disk | FTP | other *** search
/ 3D Game Programming All in One / 3D Game Programming All in One Disc.iso / 3D2E / show / ui / tsShowMiscDlg.gui < prev    next >
Text File  |  2005-11-23  |  3KB  |  128 lines

  1. //-----------------------------------------------------------------------------
  2. // Torque Game Engine
  3. // 
  4. // Copyright (c) 2001 GarageGames.Com
  5. //-----------------------------------------------------------------------------
  6.  
  7. //--- OBJECT WRITE BEGIN ---
  8. new GuiControl(TSShowMiscDlg) {
  9.    profile = "GuiDialogProfile";
  10.     horizSizing = "right";
  11.     vertSizing = "bottom";
  12.     position = "0 0";
  13.     extent = "640 480";
  14.     minExtent = "8 8";
  15.     visible = "True";
  16.     setFirstResponder = "False";
  17.     modal = "False";
  18.     helpTag = "0";
  19.  
  20.     new GuiWindowCtrl() {
  21.         profile = "GuiWindowProfile";
  22.         horizSizing = "right";
  23.         vertSizing = "bottom";
  24.         position = "140 220";
  25.         extent = "190 240";
  26.         minExtent = "8 8";
  27.         visible = "True";
  28.         setFirstResponder = "False";
  29.         modal = "True";
  30.         helpTag = "0";
  31.         text = "Misc";
  32.         resizeWidth = "True";
  33.         resizeHeight = "True";
  34.         canMove = "True";
  35.         canClose = "True";
  36.         canMinimize = "True";
  37.         canMaximize = "True";
  38.         minSize = "50 50";
  39.         closeCommand = "Canvas.popDialog(TSShowMiscDlg);";
  40.  
  41.         new GuiButtonCtrl() {
  42.             profile = "GuiButtonProfile";
  43.             horizSizing = "right";
  44.             vertSizing = "bottom";
  45.             position = "20 30";
  46.             extent = "150 20";
  47.             minExtent = "8 8";
  48.             visible = "True";
  49.             setFirstResponder = "False";
  50.             modal = "True";
  51.             command = "showToggleRoot();";
  52.             helpTag = "0";
  53.             text = "Toggle Animate Ground";
  54.         };
  55.         new GuiButtonCtrl() {
  56.             profile = "GuiButtonProfile";
  57.             horizSizing = "right";
  58.             vertSizing = "bottom";
  59.             position = "20 65";
  60.             extent = "150 20";
  61.             minExtent = "8 8";
  62.             visible = "True";
  63.             setFirstResponder = "False";
  64.             modal = "True";
  65.             command = "showToggleStick();";
  66.             helpTag = "0";
  67.             text = "Toggle Stick To Ground";
  68.         };
  69.         new GuiButtonCtrl() {
  70.             profile = "GuiButtonProfile";
  71.             horizSizing = "right";
  72.             vertSizing = "bottom";
  73.             position = "20 100";
  74.             extent = "150 20";
  75.             minExtent = "8 8";
  76.             visible = "True";
  77.             setFirstResponder = "False";
  78.             modal = "True";
  79.             command = "showSetKeyboard(true); showSetCamera(true);";
  80.             helpTag = "0";
  81.             text = "Keyboard Controls Shape";
  82.         };
  83.         new GuiButtonCtrl() {
  84.             profile = "GuiButtonProfile";
  85.             horizSizing = "right";
  86.             vertSizing = "bottom";
  87.             position = "20 135";
  88.             extent = "150 20";
  89.             minExtent = "8 8";
  90.             visible = "True";
  91.             setFirstResponder = "False";
  92.             modal = "True";
  93.             command = "showSetKeyboard(false);";
  94.             helpTag = "0";
  95.             text = "Keyboard Controls Camera";
  96.         };
  97.         new GuiButtonCtrl() {
  98.             profile = "GuiButtonProfile";
  99.             horizSizing = "right";
  100.             vertSizing = "bottom";
  101.             position = "20 170";
  102.             extent = "150 20";
  103.             minExtent = "8 8";
  104.             visible = "True";
  105.             setFirstResponder = "False";
  106.             modal = "True";
  107.             command = "showSetCamera(true); showSetKeyboard(false);";
  108.             helpTag = "0";
  109.             text = "Camera Orbits Shape";
  110.         };
  111.         new GuiButtonCtrl() {
  112.             profile = "GuiButtonProfile";
  113.             horizSizing = "right";
  114.             vertSizing = "bottom";
  115.             position = "20 205";
  116.             extent = "150 20";
  117.             minExtent = "8 8";
  118.             visible = "True";
  119.             setFirstResponder = "False";
  120.             modal = "True";
  121.             command = "showSetCamera(false); showSetKeyboard(false);";
  122.             helpTag = "0";
  123.             text = "Camera Moves Freely";
  124.         };
  125.     };
  126. };
  127. //--- OBJECT WRITE END ---
  128.